UISlider

extension Reactive where Base: UISlider

The reactive extension can be accessed through the reactive instance property and the reactive static property.

  • Sets slider’s value.

    Declaration

    Swift

    public var value: BindingTarget<Float>
  • Sets slider’s minimum value.

    Declaration

    Swift

    public var minimumValue: BindingTarget<Float>
  • Sets slider’s maximum value.

    Declaration

    Swift

    public var maximumValue: BindingTarget<Float>
  • A signal of float values emitted by the slider while being dragged by the user.

    Note

    If slider’s isContinuous property is false then values are sent only when user releases the slider.

    Declaration

    Swift

    public var values: Signal<Float, NoError>